home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000181_gsherman@remove_this.m20.net_Thu May 24 13:57:25 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  80 lines

  1. Article: 12482 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!yellow.newsread.com!bad-news.newsread.com!netaxs.com!newsread.com!POSTED.monger.newsread.com!not-for-mail
  3. From: "Glenn Sherman" <gsherman@remove_this.m20.net>
  4. Newsgroups: comp.protocols.kermit.misc
  5. References: <vOyO6.2574$gA.1009512@monger.newsread.com> <9eeitl$flc$1@newsmaster.cc.columbia.edu>
  6. Subject: Re: zmodem problem
  7. Lines: 59
  8. X-Priority: 3
  9. X-MSMail-Priority: Normal
  10. X-Newsreader: Microsoft Outlook Express 5.00.2919.6700
  11. X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700
  12. Message-ID: <tibP6.3057$gA.1129282@monger.newsread.com>
  13. Date: Thu, 24 May 2001 17:12:57 GMT
  14. NNTP-Posting-Host: 216.177.30.247
  15. X-Complaints-To: Abuse Role <abuse@metro2000.net>, We Care <abuse@newsread.com>
  16. X-Trace: monger.newsread.com 990724377 216.177.30.247 (Thu, 24 May 2001 13:12:57 EDT)
  17. NNTP-Posting-Date: Thu, 24 May 2001 13:12:57 EDT
  18. Organization: metro2000 (metro2000.net)
  19. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12482
  20.  
  21.  
  22. "Frank da Cruz" <fdc@watsun.cc.columbia.edu> wrote in message
  23. news:9eeitl$flc$1@newsmaster.cc.columbia.edu...
  24. > In article <vOyO6.2574$gA.1009512@monger.newsread.com>,
  25. > Glenn Sherman <gsherman@remove_this.m20.net> wrote:
  26. > : Begin Xfer file1.txtRetry 0: Awaiting pathname nak for file1.txt
  27. > :       0 ZMODEM     A serial connection might still be active on
  28. /dev/ser2.
  29. > : OK to exit? ok
  30. > : I know what the active serial connection warning is...
  31. > :
  32. > In case others don't, it's because the SEND command completed, and the
  33. > next command is EXIT.  Normally you'd want to put IF FAIL after the SEND
  34. > command so you could take some kind of error recovery or notification
  35. > action.
  36. >
  37. > - Frank
  38.  
  39. OK, I thought I could fix the active serial connection message, but...
  40.  
  41. ----- here is part of my script ------------------------------------
  42. input 20 OTTI.PCS                       ; get transmit prompt
  43. if fail exit 1 No transmit prompt
  44.  
  45. sleep 2
  46. cd /tmp
  47. send perrotti.pcs                       ; send price file
  48. if fail exit 1 Couldn't send file
  49.  
  50. sleep 2
  51. echo
  52. echo Hanging up the modem connection...
  53. hangup
  54. sleep 10
  55. echo Exiting the script!
  56. exit 0
  57.  
  58. ----- here are the results ---------------------------------------
  59. Begin Xfer PERROTTI.PCSRetry 0: Awaiting pathname nak for perrotti.pcs
  60.       0 ZMODEM
  61. Hanging up the modem connection...
  62. Exiting the script!
  63.  A serial connection might still be active on /dev/ser2.
  64. OK to exit? ok
  65. #
  66. ---------------------------
  67. The receiving computer is waiting for another file to be sent using zmodem.
  68. I do not have the second file to send, and their instructions say that I can
  69. just disconnect after the first file is sent.
  70. ---------------------------
  71.  
  72. Is hangup the right command to use? Should I be waiting longer?
  73.  
  74. any ideas?
  75.  
  76. -Glenn Sherman
  77.  
  78.  
  79.  
  80.